home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 3645
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 7440
- LinkTopic = "Form1"
- ScaleHeight = 3645
- ScaleWidth = 7440
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command1
- Caption = "Click Me"
- Height = 465
- Left = 2880
- TabIndex = 1
- Top = 720
- Width = 1605
- End
- Begin Project1.Progress Progress1
- Height = 795
- Left = 1200
- TabIndex = 0
- Top = 1560
- Width = 4965
- _ExtentX = 8758
- _ExtentY = 1402
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Dim i As Integer
- Progress1.MaxValue = 1000
- For i = 1 To 1000 Step 1
- Progress1.UpdateTo i
- DoEvents
- Next i
- End Sub
- Private Sub Form_Load()
- Progress1.UpdateTo 0
- End Sub
-